home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Vidichrome v1.00.adf / s / StartupII < prev   
Text File  |  1989-12-14  |  789b  |  22 lines

  1. resident c:Resident pure
  2. resident c:Mount pure ;the next 3 are loaded for speed during startup
  3. resident c:Assign pure
  4. resident c:Makedir pure  
  5. ;make IF, ENDIF, ELSE, SKIP, ENDSKIP, and ECHO resident if
  6. ;you use scripts much, and can afford the ram.
  7. ;also make Failat, WAIT, and ENDCLI resident if you use IconX a lot
  8. makedir ram:t
  9. assign T: ram:t ;set up T: directory for scripts
  10. makedir ram:env ; set up ENV: directory
  11. assign ENV: ram:env
  12. makedir ram:clipboards ;set up CLIPS: assign
  13. assign CLIPS: ram:clipboards
  14. mount speak: ;just mounting doesn't take much ram at all
  15. mount aux:
  16. mount pipe:
  17. resident Mount remove ;if you have enough ram, keep these resident
  18. resident Assign remove  ;by removing these lines
  19. resident Makedir remove
  20. ;
  21. break 1 C ;signal to other process its ok to finish
  22.